Conditions | 1 |
Total Lines | 9 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import { BaseEndpoint } from './baseEndpoint'; |
||
32 | |||
33 | /** |
||
34 | * Get images for specified company |
||
35 | * @param { number } companyID |
||
36 | * @returns { Promise<CompanyImagesResponse> } |
||
37 | * @see https://developers.themoviedb.org/3/companies/get-company-images |
||
38 | */ |
||
39 | public async images(companyID: number): Promise<CompanyImagesResponse> { |
||
40 | return this.sendGetRequest(`company/${companyID}/images`); |
||
41 | } |
||
44 |